home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / BROWSER.XPI / bin / chrome / toolkit.jar / content / global / fontpackage.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-02-20  |  3.1 KB  |  86 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Mozilla Communicator client code, released
  16.    - March 31, 1998.
  17.    -
  18.    - The Initial Developer of the Original Code is Netscape
  19.    - Communications Corporation. Portions created by Netscape are
  20.    - Copyright (C) 1998-2003 Netscape Communications Corporation. All
  21.    - Rights Reserved.
  22.    -
  23.    - Contributor(s):
  24.    -      Frank Yung-Fong Tang <ftang@netscape.com>
  25.    -      Simon Montagu <smontagu@netscape.com>
  26.    -      Seth Spitzer <sspitzer@netscape.com>
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the LGPL or the GPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
  43. <!DOCTYPE dialog SYSTEM "chrome://global/locale/fontpackage.dtd">
  44.  
  45. <dialog title="&window.title;"
  46.         id="downloadFontDialog"
  47.         buttonpack="center"
  48.         buttons="accept,cancel"
  49.         buttonlabelaccept="&downloadButton.label;"
  50.         buttonlabelcancel="&cancelButton.label;"
  51.         ondialogaccept="download();"
  52.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  53.         onload="onLoad();">
  54.  
  55.   <stringbundle id="fontPackageBundle"
  56.                 src="chrome://global/locale/fontpackage.properties"/>
  57.  
  58.   <script type="application/x-javascript"
  59.           src="chrome://global/content/fontpackage.js"/>
  60.  
  61.   <hbox>
  62.     <hbox align="start">
  63.       <image class="message-icon"/>
  64.     </hbox>
  65.     <separator orient="vertical" class="thin"/>
  66.     <vbox>
  67.  
  68.       <description>&info.label;</description>
  69.  
  70.       <separator orient="horizontal"/>
  71.  
  72.       <description id="languageTitle"/>
  73.  
  74.       <separator orient="horizontal"/>
  75.  
  76.       <hbox id="size">
  77.         <description value="&size.label;"/>
  78.         <description id="sizeSpecification"/>
  79.       </hbox>
  80.  
  81.       <description id="install" value="&install;"/>
  82.  
  83.     </vbox>
  84.   </hbox>
  85. </dialog>
  86.